From 9347aed4d3d5cacc7bffe4bcdf487a37cd4ed588 Mon Sep 17 00:00:00 2001 From: Michael Schumacher Date: Sat, 21 Nov 2009 18:11:23 +0100 Subject: [PATCH] CriticalSection does not exist, it is CRITICAL_SECTION --- babl/babl-mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl/babl-mutex.h b/babl/babl-mutex.h index a73e480..1636da3 100644 --- a/babl/babl-mutex.h +++ b/babl/babl-mutex.h @@ -27,7 +27,7 @@ #endif #ifdef WIN32 - typedef CriticalSection BablMutex; + typedef CRITICAL_SECTION BablMutex; #else typedef pthread_mutex_t BablMutex; #endif -- 2.30.2